commit initial

This commit is contained in:
2016-04-24 09:37:31 +02:00
commit aa7d44af03
2 changed files with 23 additions and 0 deletions

11
.gitignore vendored Normal file
View File

@@ -0,0 +1,11 @@
# Vim :
## swap
[._]*.s[a-w][a-z]
[._]s[a-w][a-z]
## session
Session.vim
## temporary
.netrwhist
*~
## auto-generated tag files
tags

12
desktop.nix Normal file
View File

@@ -0,0 +1,12 @@
{ config, libs, pkgs, ... }:
{
# Enable the X11 windowing system.
services.xserver = {
enable = true;
layout = "fr";
xkbOptions = "eurosign:e";
displayManager.lightdm.enable = true;
windowManager.awesome.enable = true;
};
}